home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interactive Media Design Review 1999
/
Interactive Media Design Review 1999.iso
/
pc
/
Demos
/
Bombardier_PC
/
DATACH.CST
/
00148_Script_148
< prev
next >
Wrap
Text File
|
1999-03-07
|
559b
|
23 lines
-- fix chartnames
on underscoretospace nametofix
set ilx = length(nametofix)
set outname = ""
repeat with ilp = 1 to ilx
set ichar = char ilp of nametofix
if ichar = "_" then set ichar = "-"
set outname = outname & ichar
end repeat
return ( outname )
end
on spacetounderscore nametofix
set ilx = length(nametofix)
set outname = ""
repeat with ilp = 1 to ilx
set ichar = char ilp of nametofix
if ichar = "-" then set ichar = "_"
set outname = outname & ichar
end repeat
return ( outname )
end